home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / amigaoscd / amigapluscd / AP-Website / bestellung / einzelhefte-script.php4 < prev    next >
Text File  |  2001-09-22  |  462b  |  11 lines

  1. <?php
  2.   $sender = $HTTP_POST_VARS["email"];
  3.   $fmtResponse= implode("", file("empfang.htt"));
  4.   $fmtMail= implode("", file("einzelhefte-results.htt"));
  5.   foreach($HTTP_POST_VARS as $key=> $val) {
  6.     $fmtResponse= str_replace("<$key>", $val, $fmtResponse);
  7.     $fmtMail= str_replace("<$key>", $val, $fmtMail);
  8.   }
  9.   mail($HTTP_POST_VARS["recipient"], $HTTP_POST_VARS["subject"], $fmtMail, "From: $sender\nX-Mailer: Bestellung");
  10.   echo $fmtResponse;
  11. ?>